/* ========================================
   CRM PAGE SPECIFIC STYLES
   ======================================== */

/* CRM Hero Section */
.crm-hero-section {
  position: relative;
  min-height: 500px;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.crm-hero-section .container {
  padding: 0;
  margin: 0;
  max-width: 100%;
}

.crm-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.crm-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
  padding: 0;
}

.crm-hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
}

.crm-hero-content {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 500px;
  margin: 0;
  padding: 0;
  z-index: 3;
}

.crm-hero-left {
  position: relative;
  z-index: 3;
  max-width: 650px;
  padding: 80px 0 80px 100px;
  margin-left: 100px;
  color: white;
}

.crm-hero-left h1 {
  font-size: 56px;
  font-weight: 700;
  color: #179267;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  text-align: left;
}

.crm-hero-left p {
  font-size: 20px;
  color: rgb(0, 0, 0);
  margin-bottom: 35px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  text-align: left;
}

/* Reliable Technology Section */
.reliable-tech-section {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.reliable-tech-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.tech-card {
  background: white;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1), 0 8px 16px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2), 0 16px 32px rgba(0,0,0,0.25);
}

.tech-card.animate {
  animation: slideUp 0.6s ease forwards;
}

.tech-card:nth-child(1).animate {
  animation-delay: 0.1s;
}

.tech-card:nth-child(2).animate {
  animation-delay: 0.2s;
}

.tech-card:nth-child(3).animate {
  animation-delay: 0.3s;
}

.tech-card:nth-child(4).animate {
  animation-delay: 0.4s;
}

.tech-card:nth-child(5).animate {
  animation-delay: 0.5s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.tech-icon {
 width: 70px;
  height: 70px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.tech-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.tech-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Build Smarter Section */
.build-smarter-section {
  position: relative;
  padding: 0;
  margin: 0;
  overflow: hidden;
  min-height: 500px;
}

.build-smarter-section .container {
  padding: 0;
  margin: 0;
  max-width: 100%;
}

.build-smarter-content {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 500px;
  margin: 0;
  padding: 0;
}

.build-smarter-left {
  position: relative;
  z-index: 3;
  max-width: 650px; /* Increased from 550px */
  padding: 80px 0 80px 100px;
  margin-left: 100px;
}

.build-smarter-left h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #fdfffe;
}

.build-smarter-left p {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 30px;
}

.build-smarter-right {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.build-smarter-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}

.build-smarter-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .crm-hero-left,
  .build-smarter-left {
    padding: 60px 40px;
    margin-left: 0;
  }
  
  .crm-hero-background::after,
  .build-smarter-right::before {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .build-smarter-right::before {
    background: rgba(255, 255, 255, 0.9);
  }
  
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .crm-hero-left h1 {
    font-size: 42px;
  }
  
  .build-smarter-left h2 {
    font-size: 36px;
  }
  
  .reliable-tech-section h2 {
    font-size: 28px;
  }
  
  .crm-hero-left,
  .build-smarter-left {
    padding: 40px 20px;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
  }
}